Skip to main content

POST New Channel

Overview


The table below provides key details about the POST method to create a new channel.

Create New Channel
MethodPOST
URL or Endpoint/api/v1/projectId/channels
HeadersAuthorization
Content Typemultipart/form-data
ParametersprojectId
Request BodyTitle, Logo, Type, LatencyType, InputType, FilePath

The description of the URL parameter is as follows:

projectId URL Parameter
URL Parameter NameprojectId
MandatoryYes
Typestring
DescriptionUnique Id of the project.

Before executing this API, please visit the other API for more information on the properties to achieve the desired response.

Request Body

The description of the body parameters is as follows:

Parameter NameMandatoryTypeDescription
TitleYesstringTitle of the channel
LogoNostring($binary)URL of channel's logo
TypeYesinteger($int32)Ingestion Type of RTMP(Real Time Messaging Protocol) Pull or Push
LatencyTypeYesinteger($int32)Delay between event occurrence and viewer observation in live streaming
InputTypeYesinteger($int32)Specifies the method which the live channel is delivered to the server
FilePathNostringSource URL from which the livestream is pulled from ingestion

Response

{
"success": true,
"errors": [],
"messages": [],
"result": {
"publicId": "{channelId}",
"streamId": "{streamId}",
"name": "{streamName}",
"title": "{channelTitle}",
"logo": null,
"streamServer": "rtmp://{streamServerLink]",
"streamKey": "{streamKey}",
"playbackUrl": "",
"liveStatus": "Offline",
"healthStatus": "Unknown",
"inputSource": null
},
"resultInfo": null,
"statusCode": 200
}

Information about the fields that appear when you receive the response are displayed in the table below.

Field NameTypeDescription
successboolIf the response is successful it will return true. Otherwise will return false.
errorsarray[]Indicates if there was an error.
messagesarray[]Returns the response message from back-end.
resultarray[Object]Returns the response object.
publicIdstringReturns the public identifier of the channel
streamIdstringReturns the unique identifier of the live job that handles the live streaming
namestringReturns a guid that is randomly generated
titlestringReturns the title of the channel
logostring($binary)Returns the URL for the channel's logo
streamServerstringReturns the RTMP URL of the streaming server where live video streams should be directed for ingestion
streamKeystringReturns a unique identifier which is used to authenticate and identify a specific live stream on the streaming platform
playbackUrlstringReturns a m3u8 file URL where the livestream can be accessed for playback
liveStatusstringIndicate the live status of the channel
healthStatusstringIndicate the health status of the channel
inputSourcestringReturns the location from which the live stream is being streamed
resultInfostringReturns extra information about the result.
statusCodeinteger($int32)Returns the HTTP Status Code.

If the action is successful, the service sends back an HTTP 200 or 201 response.

Errors

For information about the errors that are common to all actions, see Common Errors:

  • HTTP Status Code 400: Bad Request

  • HTTP Status Code 401: Unauthorized

  • HTTP Status Code 403: Forbidden

  • HTTP Status Code 404: Result Not Found

  • HTTP Status Code 500: Internal Server Error

  • HTTP Status Code 503: Backend Fetch Failed